找传奇、传世资源到传世资源站!

C#实现的数据结构源码

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

【例子介绍】C#实现的数据结构源码
//编写算法,在二叉树中查找值为value的结点 public Node<T> Search(Node<T> root, T value) { Node<T> p = root; if (p == null) { return null; } if (!p.Data.Equals(value)) { return p; } if ...

【相关图片】

from clipboard

【源码结构】
文件清单
└── DataStructure
    ├── ArrayDs
    │   ├── ArrayDs.cs
    │   ├── ArrayDs.csproj
    │   ├── CityDistance.cs
    │   ├── GuessNumber.cs
    │   ├── IArray.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── spmaxtrixApp.cs
    │   ├── tupletype.cs
    │   └── 复件 GuessNumber.cs
    ├── BinaryTreeDs
    │   ├── BinaryTreeDs.csproj
    │   ├── HNode.cs
    │   ├── HuffmanTree.cs
    │   ├── LinkBiSearchTree.cs
    │   ├── LinkBiTreeApp.cs
    │   ├── LinkBiTree.cs
    │   ├── Node.cs
    │   └── Properties
    │       └── AssemblyInfo.cs
    ├── DataStructure
    │   ├── DataStructure.csproj
    │   ├── DataStructure.csproj.user
    │   ├── DisplayNumber.cs
    │   ├── FindPhoneNumber.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   └── StoredStucture.cs
    ├── DataStructure.sln
    ├── DataStructure.suo
    ├── Graph
    │   ├── GraphAdjListApp.cs
    │   ├── GraphAdjList.cs
    │   ├── GraphAdjMatrix.cs
    │   ├── GraphAdjMaxtixApp.cs
    │   ├── Graph.csproj
    │   ├── IGraph.cs
    │   ├── Node.cs
    │   └── Properties
    │       └── AssemblyInfo.cs
    ├── ListDs
    │   ├── CLinkList.cs
    │   ├── DbNode.cs
    │   ├── DLinkList.cs
    │   ├── ILinarList.cs
    │   ├── ListDs.csproj
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── SeqListApp.cs
    │   ├── SeqList.cs
    │   ├── SLinkList.cs
    │   ├── SNode.cs
    │   ├── SortArith.cs
    │   ├── SortSeqList.cs
    │   └── StuNode.cs
    ├── QueueDs
    │   ├── BankQueueApp.cs
    │   ├── CSeqBankQueue.cs
    │   ├── CSeqQueue.cs
    │   ├── IBankQueue.cs
    │   ├── IQueue.cs
    │   ├── LinkBankQueue.cs
    │   ├── LinkQueue.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── QueueDs.csproj
    │   └── QueueNode.cs
    ├── SearchDS
    │   ├── OlympicsSearchApp.cs
    │   ├── OlympicsSearch.cs
    │   ├── OlyNode.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── SearchArithMetic.cs
    │   ├── SearchDsApp.cs
    │   └── SearchDS.csproj
    ├── SortDs
    │   ├── OlympicsSortApp.cs
    │   ├── OlympicsSort.cs
    │   ├── OlyNode.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── RadixNode.cs
    │   ├── SortArithMetic.cs
    │   ├── SortDsApp.cs
    │   └── SortDs.csproj
    ├── StackDs
    │   ├── IStack.cs
    │   ├── LinkStack.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── SeqStack.cs
    │   ├── StackApp.cs
    │   ├── StackDs.csproj
    │   ├── StackNode.cs
    │   ├── TrainArrangeByLinkStack.cs
    │   └── TrainArrangeBySeqStack.cs
    ├── StringDs
    │   ├── IString.cs
    │   ├── OneToHunderdQ.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── SeqString.cs
    │   └── StringDs.csproj
    └── TreeDS
        ├── CLTree.cs
        ├── CSTree.cs
        ├── MLTree.cs
        ├── PCLTree.cs
        ├── Program.cs
        ├── Properties
        │   └── AssemblyInfo.cs
        ├── PTree.cs
        ├── TreeDS.csproj
        ├── TreeDS.sln
        └── TreeDS.suo

23 directories, 95 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复